home *** CD-ROM | disk | FTP | other *** search
/ Platinum Plus: Home & Hobby / Platinum Plus Home and Hobby CD Explorer.ISO / programs / soccersc / fix.txt < prev    next >
Encoding:
Text File  |  1995-03-06  |  2.4 KB  |  70 lines

  1. ;==============================================================================
  2. ;    $Revision: 1.3 $
  3. ;
  4. ;    This is an example data import file for Soccer Scorecard using the
  5. ;    fixed width data format - all data must line up exactly in vertical
  6. ;    columns.
  7. ;
  8. ;    This FIXed example is identical in data content to the SDF.TXT format
  9. ;    provided.
  10. ;
  11. ;    Notes:
  12. ;    1) Maximum record (line) width is 80 characters.
  13. ;
  14. ;    SOCCER.INI settings for this example:
  15. ;
  16. ;        [Import]
  17. ;        Method=0
  18. ;        Order=A-B-C-D-E-F
  19. ;        FixLenA=3
  20. ;        FixLenB=3
  21. ;        FixLenC=24
  22. ;        FixLenD=2
  23. ;        FixLenE=24
  24. ;        FixLenF=2
  25. ;
  26. ;    Field descriptions:
  27. ;        The fields are described below in the order in which they appear
  28. ;        in the data below, left to right. This order can be changed around
  29. ;        by re-configuring the 'Order' parameter above - for example
  30. ;        changing to 'CEABDF' would infer the home team name would be
  31. ;        followed by the away team name and so on.
  32. ;
  33. ;        1) Coupon number - if not blank then match is assigned as being
  34. ;            a coupon entry
  35. ;        2) Match status:
  36. ;                0 - not yet played
  37. ;                1 - League match
  38. ;                2 - Cup #1
  39. ;                3 - Cup #2
  40. ;                4 - Cup #3
  41. ;                5 - VOID
  42. ;        3) Home team name
  43. ;        4) Home team score
  44. ;        5) Away team name
  45. ;        6) Away team score
  46. ;
  47. ;    Data representation (in columns):
  48. ;
  49. ;        +++++++++1+++++++++2+++++++++3+++++++++4+++++++++5+++++++++6+++++
  50. ;        Aaa.Bbb.Cccccccccccccccccccccccc.Dd.Eeeeeeeeeeeeeeeeeeeeeeee.Ff
  51. ;
  52. ;    In the above representation the capital letter specifies the
  53. ;    placeholder for the data item, and the following lower case letters
  54. ;    reserve the space in the string for the value. A period '.' should
  55. ;    be interpreted here as a space - not read by the application as
  56. ;    meaningful data.
  57. ;
  58. ;    The user can optionally use an upper case letter to begin a data
  59. ;    item in the 'Order=' parameter of SOCCER.INI, and then fill out
  60. ;    the rest of the data item width with lower case letters. Only
  61. ;    uppercase letters are read and understood by the application.
  62. ;    However the 'FixLen?=' parameters must still be properly described!
  63. ;
  64. ;==============================================================================
  65.   1   1 Everton                   1 Liverpool                 1
  66.   2   2 Charlton                  1 Athletic                  0
  67.       3 Manchester Utd            2 Manchester City           2
  68.   3   5 Southampton               3 Wimbledon                 3
  69.  
  70.